home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib9
/
v_11_08
/
1108121b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
219 b
|
19 lines
1: struct X
2: {
3: static int i;
4: class Y
5: {
6: void f();
7: };
8: };
9:
10: class Z
11: {
12: static int i;
13: friend void X::Y::f()
14: {
15: i = 5;
16: }
17: };